home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / rloginPseudoDev.h,v < prev    next >
Encoding:
Text File  |  1992-04-22  |  1.2 KB  |  57 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     92.04.21.17.32.16;  author kupfer;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Shared declarations for programs that deal with remote login
  17. pseudo-devices.
  18. @
  19.  
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @/*
  28.  * rloginPseudoDev.h --
  29.  *
  30.  *    Shared declarations for programs that deal with remote login
  31.  *    pseudo-devices.
  32.  *
  33.  * Copyright 1992 Regents of the University of California
  34.  * Permission to use, copy, modify, and distribute this
  35.  * software and its documentation for any purpose and without
  36.  * fee is hereby granted, provided that this copyright
  37.  * notice appears in all copies.  The University of California
  38.  * makes no representations about the suitability of this
  39.  * software for any purpose.  It is provided "as is" without
  40.  * express or implied warranty.
  41.  *
  42.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.8 92/03/02 15:32:57 bmiller Exp $ SPRITE (Berkeley)
  43.  */
  44.  
  45. #ifndef _RLOGINPSEUDODEV
  46. #define _RLOGINPSEUDODEV
  47.  
  48. /* 
  49.  * Remote logins create a pseudo-device named ttyXXX, where XXX is some 
  50.  * number to uniquify the name.
  51.  */
  52.  
  53. #define RLOGIN_PDEV_NAME    "tty"
  54.  
  55. #endif /* _RLOGINPSEUDODEV */
  56. @
  57.